home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / ptv1n4.arc / PRINTSCR.C < prev    next >
Text File  |  1990-09-13  |  145b  |  10 lines

  1. #include <dos.h>
  2.  
  3. void print_screen(int turn_on)
  4. {
  5.   if (turn_on)
  6.     pokeb(0x0050, 0x0000, 0);
  7.   else
  8.     pokeb(0x0050, 0x0000, 1);
  9. }
  10.